home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / http-rpc-epmap.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  74 lines

  1. #
  2. # This script was written by Georges Dagousset <georges.dagousset@alert4web.com>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10763);
  10.  script_version ("$Revision: 1.5 $");
  11.  name["english"] = "Detect the HTTP RPC endpoint mapper";
  12.  script_name(english:name["english"]);
  13.  
  14.  desc["english"] = "This detects the http-rpc-epmap service by connecting
  15. to the port 593 and processing the buffer received.
  16.  
  17. This endpoint mapper provides CIS (COM+ Internet Services)
  18. parameters like port 135 (epmap) for RPC.
  19.  
  20. Solution:
  21. Deny incoming traffic from the Internet to TCP port 593
  22. as it may become a security threat in the future, if a
  23. vulnerability is discovered.
  24.  
  25. For more information about CIS:
  26. http://msdn.microsoft.com/library/en-us/dndcom/html/cis.asp
  27.  
  28. Risk factor : Low";
  29.  
  30.  script_description(english:desc["english"]);
  31.  
  32.  summary["english"] = "Detect http-rpc-epmap";
  33.  script_summary(english:summary["english"]);
  34.  
  35.  script_category(ACT_GATHER_INFO);
  36.  
  37.  script_copyright(english:"This script is Copyright (C) 2001 Alert4Web.com");
  38.  family["english"] = "Windows";
  39.  script_family(english:family["english"]);
  40.  script_dependencie("find_service.nes");
  41.  script_require_ports("Services/http-rpc-epmap", 593);
  42.  exit(0);
  43. }
  44.  
  45. #
  46. # The script code starts here
  47. #
  48.  
  49. exit(0); # Broken at this time
  50.  
  51. port = get_kb_item("Services/http-rpc-epmap");
  52. if (!port) port = 593;
  53. key = string("http-rpc-epmap/banner/", port);
  54. banner = get_kb_item(key);
  55.  
  56. if(!banner)
  57. {
  58. if (get_port_state(port))
  59. {
  60.  soc = open_sock_tcp(port);
  61.  
  62.  if (soc)
  63.   {
  64.   banner = recv(socket:soc, length:1000);
  65.   close(soc);
  66.   }
  67.  }
  68. }
  69.  
  70. if( "ncacn_http" >< banner)
  71. {
  72.  security_warning(port:port);
  73. }
  74.